home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-06-24 | 789 b | 48 lines | [TEXT/MPS ] |
- {**********************************************************************
- {*
- {* Teach uEvent -- Version 3.0 (interface)
- {*
- {* Copyright (c)
- {* Apple Computer, Inc. 1986-1990
- {* All Rights Reserved.
- {*
- {* Developer Technical Support Apple II Sample Code
- {*
- {* This file contains the interface to the code which implements the
- {* main event loop used by the Teach program.
- {*
- {**********************************************************************}
-
- UNIT uEvent;
-
- INTERFACE
-
- USES
- types,
- locator,
- quickdraw,
- events,
- controls,
- windows,
- dialogs,
- menus,
- stdfile,
- GSOS,
- resources,
-
- uGlobals,
- uWindow,
- uMenu;
-
-
-
- procedure mainEvent; {Main event handling loop which repeats until Quit}
-
-
-
- IMPLEMENTATION
-
- {$i uEvent.inc.p }
-
- END.
-